home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / qrep097a.zip / DEMO.DPR < prev    next >
Text File  |  1995-11-11  |  638b  |  24 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {TQuickReportDemo},
  6.   Mdrep in 'MDREP.PAS' {MDForm},
  7.   Simprep in 'SIMPREP.PAS' {SimpForm},
  8.   Biorep in 'BIOREP.PAS' {Bioform},
  9.   Demopre in 'DEMOPRE.PAS' {PrevForm},
  10.   Labelrep in 'Labelrep.pas' {LabelForm};
  11.  
  12. {$R *.RES}
  13.  var
  14.  t : longint;
  15. begin
  16.   Application.CreateForm(TTQuickReportDemo, TQuickReportDemo);
  17.   Application.CreateForm(TSimpForm, SimpForm);
  18.   Application.CreateForm(TMDForm, MDForm);
  19.   Application.CreateForm(TBioform, Bioform);
  20.   Application.CreateForm(TPrevForm, PrevForm);
  21.   Application.CreateForm(TLabelForm, LabelForm);
  22.   Application.Run;
  23. end. 
  24.